home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-10-15 | 565 b | 24 lines | [TEXT/MPS ] |
- #
- # External_Tools interface test script.
- #
-
- tool YourTool s:'VUxt'
-
- begin
-
- # Services specific to YourTool:
-
- Service "YourService"('Integer', 'Integer') return 'Integer';
-
- # Services common to all Virtual User 2.0 external tools:
-
- Service "Initialize"( 'undefined' ); # pass TRUE for target, FALSE for host
- Service "Cancel"( 'string' );
- Service "GetToolServices"() return 'list';
- Service "GetToolVersion"() return 'list';
- Service "Poll"( 'string' ) return 'string';
- Service "ServiceSupported"( 'string' ) return 'undefined';
- Service "Quit"();
-
- end;
-